home *** CD-ROM | disk | FTP | other *** search
/ Aminet 48 / Aminet 48 (2002)(GTI - Schatztruhe)[!][Apr 2002].iso / Aminet / dev / src / expat-src.lha / expat-1.95.2 / xmlwf / Makefile.amiga < prev    next >
Encoding:
Makefile  |  2001-10-25  |  1.8 KB  |  69 lines

  1. # Generated automatically from Makefile.in by configure.
  2. ################################################################
  3. # Process this file with top-level configure script to produce Makefile
  4. #
  5. # Copyright 2000 Clark Cooper
  6. #
  7. #  This file is part of EXPAT.
  8. #
  9. #  EXPAT is free software; you can redistribute it and/or modify it
  10. #  under the terms of the License (based on the MIT/X license) contained
  11. #  in the file COPYING that comes with this distribution.
  12. #
  13. # EXPAT IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  14. # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  15. # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  16. # IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  17. # CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  18. # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  19. # SOFTWARE OR THE USE OR OTHER DEALINGS IN EXPAT.
  20. #
  21.  
  22. bindir = ${exec_prefix}/bin
  23.  
  24. LIBDIR= ../lib/.libs
  25. INCDIR= ../include
  26.  
  27. LDFLAGS=  -static
  28. CFLAGS= -g -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -fexceptions -I$(INCDIR)
  29. CC = gcc
  30.  
  31. FILEMAP_OBJ= unixfilemap.o
  32. OBJS= xmlwf.o xmlfile.o codepage.o $(FILEMAP_OBJ)
  33. LIBS= -L$(LIBDIR) -lexpat
  34.  
  35. INSTALL = /bin/install -c
  36. INSTALL_PROGRAM = ${INSTALL}
  37. LIBTOOL = $(SHELL) $(top_builddir)/libtool
  38. mkinstalldirs = $(SHELL) $(top_srcdir)/conftools/mkinstalldirs
  39.  
  40. srcdir = .
  41. top_builddir = ..
  42. top_srcdir = ..
  43. prefix = /usr/local
  44. exec_prefix = ${prefix}
  45.  
  46.  
  47. xmlwf: $(OBJS)
  48.     $(CC) -o xmlwf $(LDFLAGS) $(OBJS)
  49.  
  50. install: xmlwf
  51.     $(mkinstalldirs) $(bindir)
  52.     $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) xmlwf $(bindir)/xmlwf
  53.  
  54. uninstall:
  55.     $(LIBTOOL) --mode=uninstall rm -f $(bindir)/xmlwf
  56.  
  57. check:    $(SUBDIRS)
  58.     @echo
  59.     @echo This package does not yet have a regression test.
  60.     @echo
  61.  
  62. clean:
  63.     rm -f xmlwf core *.o
  64.  
  65. distclean: clean
  66.     rm -f Makefile
  67.  
  68. maintainer-clean: distclean
  69.